@charset "utf-8";
/* Basic styles to be used with all devices and under all conditions */


/* HTML and Body styles */

html {
    background: rgb(51, 51, 51) url(../images/bg.jpg);
    background-size:cover;
    font-family: Verdana, Geneva, sans-serif;
    height: 100%;
}

body {
    background: linear-gradient(180deg, hsla(342, 34%, 81%, 1) 30%, hsla(188, 46%, 50%, 1) 100%);
    background: -moz-linear-gradient(180deg, hsla(342, 34%, 81%, 1) 30%, hsla(188, 46%, 50%, 1) 100%);
    background: -webkit-linear-gradient(180deg, hsla(342, 34%, 81%, 1) 30%, hsla(188, 46%, 50%, 1) 100%);
    box-shadow: black 20px 0px 40px,  black -20px 0px 40px;
    border: 3px solid black;
    margin: 10% auto;
    min-width: 320px;
    max-width: 700px;
    height: 550px;  
    width: 100%;
    line-height: 1.2em;
    text-align: center;
    

}
h1{
    text-align: center;
    font-size: 50px;
    color: black;
    line-height: 1em;
}
#addForm{
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}
legend {
    display: none;
    border: none;
}
fieldset, p { 
    border:none;
    text-align:center;
}
table {
    text-align: center;
    margin: auto;
    margin-top: 30px;
}
th {
    padding-left: 5px;
    padding-right: 5px;
}
fieldset select, fieldset label, fieldset input{
    margin: 12px 7px;
    text-align: center;
}


label{
    font-weight: 700;
}

input[type="submit"]{
    background: #fafafa;
    background-image: linear-gradient(to bottom, #fafafa, #85d0ff);
    border-radius: 11px;
    box-shadow: 3px 3px 3px #000000;
    color: #6e6e6e;
    font-size: 20px;
    padding: 5px 60px 5px 60px;
    margin: 15px 0;
    border: solid #636566 2px;
    text-decoration: none;
  }
  
  input[type="submit"]:hover {
    background: #79c0ed;
    background-image: linear-gradient(to bottom, #7bf17b, #84b2d1);
    text-decoration: none;
  }
fieldset select{
    width: 400px;
}